home *** CD-ROM | disk | FTP | other *** search
/ Champak 130 / Vol 130.iso / games / ed_dress.swf / scripts / frame_1 / DoAction.as
Text File  |  2008-11-12  |  300b  |  10 lines

  1. bytes_loaded = Math.round(this.getBytesLoaded());
  2. bytes_total = Math.round(this.getBytesTotal());
  3. getPercent = bytes_loaded / bytes_total;
  4. this.loadBar._width = getPercent * 100;
  5. this.loadText = Math.round(getPercent * 100) + "%";
  6. if(bytes_loaded == bytes_total)
  7. {
  8.    this.gotoAndPlay(3);
  9. }
  10.